home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / gdb-4.5 / sun4.md / bfd / sysdep.h < prev   
C/C++ Source or Header  |  1992-06-24  |  3KB  |  132 lines

  1. #include <fcntl.h>
  2. #include <errno.h>
  3. #include <stdio.h>
  4. #include <sys/types.h>
  5. #include <sys/stat.h>
  6. #include <ctype.h>
  7. #include <string.h>
  8. #include <sys/file.h>
  9. #ifndef O_ACCMODE
  10. #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
  11. #endif
  12. #define SEEK_SET 0
  13. #define SEEK_CUR 1
  14.  
  15. extern char *EXFUN(mktemp,(CONST char*));
  16. /*extern int   EXFUN(fflush,(FILE *));*/
  17. extern int   EXFUN(write,(int, CONST char *, int));
  18. /*extern char *EXFUN(index,(CONST char *, int c));*/
  19. extern void  EXFUN(abort,(void));
  20. extern int   EXFUN(close,(int));
  21. extern int   EXFUN(fcntl,(int des, int cmd, int e));
  22. /*extern int   EXFUN(fprintf,(FILE *stream,CONST char *format,...));*/
  23. /*extern int   EXFUN(printf,(CONST char *format,...));*/
  24. extern int   EXFUN(qsort,(void *data,int els, int siz, int func()));
  25. extern void  EXFUN(exit,(int));
  26. extern long  EXFUN(fseek,(FILE*, int, int));
  27. extern int   EXFUN(fclose,(FILE*));
  28. extern void  EXFUN(bcopy,(char*,char*,int));
  29. extern int   EXFUN(bcmp,(char *, char *, int));
  30. extern void  EXFUN(bzero,(char *, int));
  31. /*extern void *EXFUN(memset,(char *, int, int));*/
  32. extern int   EXFUN(puts,(CONST char*));
  33. extern int   EXFUN(fputs,(CONST char*,FILE*));
  34. extern int   EXFUN(rmdir,(CONST char *));
  35. extern int   EXFUN(getuid,(void));
  36. extern int   EXFUN(getgid,(void));
  37. extern int   EXFUN(rename,(CONST char *, CONST char*));
  38. extern int   EXFUN(etuid,());
  39. extern int   EXFUN(etgid,());
  40. extern void  EXFUN(perror,(CONST char *));
  41. #ifndef DONTDECLARE_MALLOC
  42. extern PTR   EXFUN(malloc,(unsigned));
  43. extern PTR   EXFUN(realloc, (PTR, unsigned));
  44. #endif
  45.  
  46. #ifndef __GNUC__
  47. extern PTR   EXFUN(memcpy,(PTR,CONST PTR,unsigned int));
  48. #else
  49. /* char * EXFUN( memcpy,(char *,CONST char *,unsigned int)); */
  50. #endif
  51.  
  52.  
  53. extern char * strchr();
  54. extern char *getenv();
  55. extern char *memchr();
  56. extern char *strrchr();
  57. extern int chmod();
  58. extern int fread();
  59. extern int fstat();
  60. extern int fwrite();
  61. extern int sscanf();
  62. extern int stat();
  63. extern int strtol();
  64. extern int EXFUN(free,(PTR));
  65.  
  66.  
  67. extern char *strrchr();
  68. extern char *ctime();
  69. extern int _flsbuf();
  70. extern int fclose();
  71. extern int time();
  72. extern int utimes();
  73. extern int vfprintf();
  74. extern long atol();
  75. extern char *getenv();
  76. extern int fputc();
  77. extern int unlink();
  78.  
  79.  
  80. /* EXACT TYPES */
  81. typedef char int8e_type;
  82. typedef unsigned char uint8e_type;
  83. typedef short int16e_type;
  84. typedef unsigned short uint16e_type;
  85. typedef int int32e_type;
  86. typedef unsigned int uint32e_type;
  87.  
  88.  
  89. #ifdef __GNUC__
  90. typedef unsigned long long uint64e_type;
  91.  
  92. #else
  93. typedef struct {
  94.   uint32e_type low, high;
  95. } uint64e_type;
  96.  
  97. #endif
  98. /* CORRECT SIZE OR GREATER */
  99. typedef char int8_type;
  100. typedef unsigned char uint8_type;
  101. typedef short int16_type;
  102. typedef unsigned short uint16_type;
  103. typedef int int32_type;
  104. typedef unsigned int uint32_type;
  105.  
  106. #ifdef __GNUC__
  107. typedef unsigned long long uint64_type;
  108. typedef long long int64_type;
  109. #else
  110. typedef struct {
  111.   uint32e_type low, high;
  112. } uint64_type;
  113.  
  114. typedef struct {
  115.   uint32e_type low, high;
  116. } int64_type;
  117.  
  118. #endif
  119.  
  120.  
  121. #define BYTES_IN_PRINTF_INT 4
  122. #ifndef __GNUC__
  123. #define uint64_typeLOW(x) (uint32_type)(((x).low))
  124. #define uint64_typeHIGH(x) (uint32_type)(((x).high))
  125. #else
  126. #define uint64_typeLOW(x) (uint32_type)(((x) & 0xffffffff))
  127. #define uint64_typeHIGH(x) (uint32_type)(((x) >> 32) & 0xffffffff)
  128. #endif
  129.  
  130.  
  131. #include "fopen-same.h"
  132.